Methods
	
	break ends execution of the current 
for, 
while, do/while or switch structure
continue is used within looping structures to skip the rest of the current loop iteration and continue execution at the beginning of the next iteration
	
	do/while loops are very similar to 
while loops, except the truth expression is checked at the end of each iteration instead of in the beginning
Often you'd want to execute a statement if a certain condition is met, and a different statement if the condition is not met
	
	for loops are the most complex loops
	
	The if construct is one of the most important features of Concept
	
	Imports the specified static library into the current project
	
	Includes the specified source into the current one
	
	Ends execution of the current function, and returns its argument as the value of the function call
	
	The switch statement is similar to a series of 
if statements on the same expression
while loops are the simplest type of loop